home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 008 / src / def.wseg.h < prev    next >
C/C++ Source or Header  |  1995-03-17  |  261b  |  13 lines

  1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1984. */
  2.  
  3. #ifndef NOWORM
  4. /* worm structure */
  5. struct wseg {
  6.    struct wseg *nseg;
  7.    xchar wx,wy;
  8.    Bitfield(wdispl,1);
  9. };
  10.  
  11. #define newseg()   (struct wseg *) alloc(sizeof(struct wseg))
  12. #endif NOWORM
  13.